%% The Matlab interface allows you to define
%  'cells' of code, using '%%' to start a new one.
%  You can run a cell using CTRL+ENTER (Windows).
% 
% This is useful for you to run the example codes
% here one chunk at a time.

% Also, remember to clear your Matlab environment
% regularly:
%  "clear" deletes all variables;
%  "clc" clears text in the command line;
%  "clf" clears the active figure; you can also call "close all" to close all figures.

clear; clc; clf;

%% Cell 1
x = 1:10

%% Cell 2
x = eye(10)

%% Cell 3
eig(x)
